home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / time / RCS / time.man,v < prev    next >
Text File  |  1991-01-28  |  2KB  |  84 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @@;
  7.  
  8.  
  9. 1.1
  10. date     91.01.27.22.22.36;  author kupfer;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @Man page for time() and ftime().
  17. @
  18.  
  19.  
  20.  
  21. 1.1
  22. log
  23. @Initial revision
  24. @
  25. text
  26. @.\" Copyright (c) 1980 Regents of the University of California.
  27. .\" All rights reserved.  The Berkeley software License Agreement
  28. .\" specifies the terms and conditions for redistribution.
  29. .\"
  30. .\"    @@(#)time.3c    6.1 (Berkeley) 5/9/85
  31. .\"
  32. .TH TIME 3C "May 9, 1985" 
  33. .UC 4
  34. .SH NAME
  35. time, ftime \- get date and time
  36. .SH SYNOPSIS
  37. .nf
  38. .B long time(0)
  39. .PP
  40. .B long time(tloc)
  41. .B long *tloc;
  42. .PP
  43. .B #include <sys/types.h>
  44. .B #include <sys/timeb.h>
  45. .B ftime(tp)
  46. .B struct timeb *tp;
  47. .fi
  48. .SH DESCRIPTION
  49. .ft B
  50. These interfaces are obsoleted by gettimeofday(2).
  51. .ft R
  52. .PP
  53. .I Time
  54. returns the time since 00:00:00 GMT, Jan. 1, 1970, measured
  55. in seconds.
  56. .PP
  57. If
  58. .I tloc
  59. is nonnull,
  60. the return value is also stored in the
  61. place to which
  62. .I tloc
  63. points.
  64. .PP
  65. The
  66. .I ftime
  67. entry fills in a structure pointed to by its argument,
  68. as defined by
  69. .RI < sys/timeb.h >:
  70. .PP
  71. .ta .5i +\w'unsigned 'u
  72. .nf
  73. .so /usr/include/sys/timeb.h
  74. .fi
  75. .PP
  76. The structure contains the time since the epoch in seconds,
  77. up to 1000 milliseconds of more-precise interval,
  78. the local time zone (measured in minutes of time westward from Greenwich),
  79. and a flag that, if nonzero, indicates that
  80. Daylight Saving time applies locally during the appropriate part of the year.
  81. .SH "SEE ALSO"
  82. date(1), gettimeofday(2), settimeofday(2), ctime(3)
  83. @
  84.